projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dac5af2
)
* lib-src/seccomp-filter.c: Print trailing newline.
author
Philipp Stephani
<phst@google.com>
Sun, 11 Apr 2021 14:02:05 +0000
(16:02 +0200)
committer
Philipp Stephani
<phst@google.com>
Sun, 11 Apr 2021 14:03:08 +0000
(16:03 +0200)
lib-src/seccomp-filter.c
patch
|
blob
|
history
diff --git
a/lib-src/seccomp-filter.c
b/lib-src/seccomp-filter.c
index eeca75fddfb8090911ef94694694f5bd55c07ca9..77e4413d3d406452b94d4c3f5dc649abbd3770f8 100644
(file)
--- a/
lib-src/seccomp-filter.c
+++ b/
lib-src/seccomp-filter.c
@@
-60,7
+60,10
@@
fail (int error, const char *format, ...)
va_list ap;
va_start (ap, format);
if (error == 0)
- vfprintf (stderr, format, ap);
+ {
+ vfprintf (stderr, format, ap);
+ fputc ('\n', stderr);
+ }
else
{
char buffer[1000];